Remove a self-assignment
authorMatthias Clasen <mclasen@redhat.com>
Sun, 9 Aug 2015 21:38:40 +0000 (23:38 +0200)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 9 Aug 2015 21:38:40 +0000 (23:38 +0200)
clang doesn't like those.

gtk/gtkbbox.c

index 68ec4845c812e22f8b70ab64dbfa8d37f6cdcdf8..000ba13dbe86702199ac46ee8c209fece9d5c3ea 100644 (file)
@@ -884,7 +884,7 @@ gtk_button_box_size_allocate (GtkWidget     *widget,
       switch (gtk_box_get_baseline_position (GTK_BOX (widget)))
        {
        case GTK_BASELINE_POSITION_TOP:
-         baseline = baseline;
+          /* keep baseline as is */
          break;
        case GTK_BASELINE_POSITION_CENTER:
          baseline = baseline + (allocation->height - baseline_height) / 2;